import matplotlib.pyplot as pltplt.plot([1,23,2,4])plt.show()plt.plot([8,65,23,90])plt.show()
(a) First
(b) Second
Figure 3: Charts
5 Mermaid Diagrams
flowchart LR
A[Hard edge] --> B(Round edge)
B --> C{Decision}
C --> D[Result one]
C --> E[Result two]
6 Block Layout
6.1 List One
Item A
Item B
Item C
6.2 List Two
Item X
Item Y
Item Z
7 Placing Colorbars
Colorbars indicate the quantitative extent of image data. Placing in a figure is non-trivial because room needs to be made for them. The simplest case is just attaching a colorbar to each axes:1.